.main{
    display: flex;
    padding-left: 300px;
    margin-top: 30px;
}

.image{
    flex: 5;
    height: 400px;
}

.image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.description{
    position: relative;
    flex: 6;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

.headline_description{
    padding-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #ff8383;
}

.textcontainer1 p{
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-right: 20px;
    background-color: #fdf1ef;
    text-align: justify;
}

.textcontainer2{
    display: flex;
}

.textcontainer2 p{
    margin-right: 50px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #fdf1ef;
}

.back_button{
    position: absolute;
    display: flex;
    bottom: -150px;
    right: 80px;
}

.back_button a:link,
.back_button a:visited,
.back_button a:hover,
.back_button a:active{
    text-decoration: none;
    font-weight: bold;
    color: #ff8383;
    background-color: #fdf1ef;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    white-space: nowrap;
}

.back_button a:hover{
    opacity: 0.7;
    transition: opacity 0.15s;
}

@media (max-width: 1180px) {
    .main{
        flex-direction: column;
        padding-left: 0;
    }
    .image img{
        max-height: 400px;
    }
    .description{
        padding-left: 0;
    }
}